home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / xlib / xcbitmap / quicky.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-14  |  284 b   |  15 lines

  1. #ifndef QUICKY
  2. #define QUICKY
  3.  
  4. typedef unsigned short ushort;
  5. typedef unsigned long ulong;
  6. typedef unsigned char uchar;
  7.  
  8. typedef signed short sshort;
  9. typedef signed long slong;
  10. typedef signed char schar;
  11.  
  12. enum bool { false=0, no=0, off=0, true=1, yes=1, on=1 };
  13.  
  14. #endif
  15.